home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Present…nuary (Partner) - Disc 2 / The Apple Reference and Presentations Library (Disc 2)(January 1994).iso / Diehl Graphsoft / German / MiniCad / MiniCad-PPC / MiniCad 5.0.1-D / MiniCad 5.0.1-D.rsrc / STR#_7008.txt < prev    next >
Text File  |  1994-10-06  |  1KB  |  49 lines

  1. Writes data to a text file and implements a carriage return
  2.  
  3. WriteLn(V1,V2,...,Vn: INTEGER or REAL or LONGINT or CHAR or STRING);
  4.  
  5. Writes data to a text file but does not implement a carriage return
  6.  
  7. Write(V1,V2,...,Vn: INTEGER or REAL or LONGINT or CHAR or STRING);
  8.  
  9. Closes a currently open text file
  10.  
  11. Close(FileName : TEXT);
  12.  
  13. Allows the user to add text information to the end of a text file
  14.  
  15. Append(FileName : TEXT);
  16.  
  17. Displays the standard Macintosh file dialog which requests the user to select a text file for output
  18.  
  19. PutFile(CommentStr, FileDefault : STRING;  VAR FileName : TEXT);
  20.  
  21. Creates a new file or opens an exixting one
  22.  
  23. ReWrite(FileName : TEXT);
  24.  
  25. Returns TRUE if the reading pointer of an open file has reached the end of the line or carrage return
  26.  
  27. EOLN(FileName : TEXT) : BOOLEAN;
  28.  
  29. Returns TRUE if the reading pointer of an open file has reached the end of the file
  30.  
  31. EOF(Filename : TEXT) : BOOLEAN;
  32.  
  33. Reads data from the current open text file and  implements a carriage return
  34.  
  35. ReadLn(VAR V1,V2, ... , Vn : INTEGER or REAL or LONGINT or CHAR or STRING);
  36.  
  37. Reads data from the current open text file and does not implement a carriage return
  38.  
  39. Read(VAR V1,V2, ... , Vn : INTEGER or REAL or LONGINT or CHAR or STRING);
  40.  
  41. Displays the standard Macintosh file dialog which requests the user to select a text file
  42.  
  43. GetFile(VAR FileName : TEXT);
  44.  
  45. Opens a file for reading capability
  46.  
  47. Open(FileName : TEXT);
  48.  
  49.